home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GameStar 2005 October
/
Gamestar_77_2005-10_dvd.iso
/
Programy
/
klmcodec136.exe
/
{app}
/
tools
/
graphedit.chm
/
scripts
/
linkcss.js
< prev
Wrap
Text File
|
2004-09-27
|
620b
|
27 lines
writeCSS(scriptPath());
function scriptPath()
{
var col = document.scripts;
return col[col.length - 1].src;
}
function writeCSS(spath)
{
// Get a base CSS name based on the browser.
var css = "backsdkn.css";
if (navigator.appName == "Microsoft Internet Explorer") {
var sVer = navigator.appVersion;
sVer = sVer.substring(0, sVer.indexOf("."));
if (sVer >= 4)
css = "backsdk4.css";
else
css = "backsdk3.css";
}
// The CSS is in the same directory as the script.
css = spath.replace(/linkcss.js/, css);
document.writeln('<LINK REL="stylesheet" HREF="' + css + '">');
}